home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 4 / Apprentice-Release4.iso / Source Code / Libraries / Apache 1.0 / cgi-bin / date < prev    next >
Text File  |  1995-12-04  |  151b  |  15 lines

  1. #!/bin/sh
  2.  
  3. DATE=/bin/date
  4.  
  5. echo Content-type: text/plain
  6. echo
  7.  
  8. if [ -x $DATE ];  then
  9.     $DATE
  10. else 
  11.     echo Cannot find date command on this system.
  12. fi
  13.  
  14.  
  15.